WORepetition
Synopsis
WORepetition {
list = anObjectList;
item = anIteratedObject;
[identifier = aString;] };
WORepetition {
count = aNumber; [index = aNumber;];};
Description
A WORepetition is a container element that repeats its contents a given number of times. You can use a WORepetition to create dynamically generated ordered and unordered lists or banks of check boxes or radio buttons.
- list
-
The array of objects through which the WORepetition will iterate.
- item
-
The current item in the list array.
- identifier
-
The value used to uniquely identify this itme in the list array. Typically it is the primary key of an Enterprise Object.
- count
-
The number of times this element will repeat its contents.
- index
-
The index of the current iteration of the WORepetition.
Examples